|
|
|
You might have different communities of users, all of which have the same telephone model, but which require different administered settings. For example, you might want to restrict Call Center agents from being able to Logoff, which might be an essential capability for “hot-desking” associates. We provide examples of the group settings for each of these situations later in this section.
Use the GROUP system value for this purpose:
Here is an example of the configuration file for the Call Center agent:
IF $GROUP SEQ 1 goto CALLCENTER
IF $GROUP SEQ 2 goto HOTDESK
{specify settings unique to Group 0}
goto END
# CALLCENTER
{specify settings unique to Group 1}
goto END
# HOTDESK
{specify settings unique to Group 2}
# END
{specify settings common to all Groups}
|
|
|